.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-container h4 {
    text-align: center;
    margin-bottom: 2rem;
    text-transform: capitalize;
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
}

.form__box {
    border: 3px solid #f7b948;
    border-radius: 12px;
    padding: 2.5rem;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form__columns {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.column {
    flex: 1;
    width: 50%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.message-group {
    height: calc(100% - 1.5rem);
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #f7b948;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-group textarea {
    width: 100%;
    height: 250px; /* Adjusted for larger inputs */
    padding: 1rem;
    border: 2px solid #f7b948;
    border-radius: 6px;
    font-size: 1.1rem;
    resize: none;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #64968c;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    background-color: #fff;
}

.form__footer {
    text-align: center;
    margin-top: 2rem;
}

.send__btn {
    padding: 1rem 2.5rem;
    background-color: #f7b948;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.send__btn:hover {
    transform: translateY(-2px);
    background-color: #15ab158e;
    box-shadow: 0 4px 15px rgba(5, 205, 45, 0.2);
}

.send__btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.send__btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.send__btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.3);
}

@media (max-width: 768px) {
    .form__columns {
        flex-direction: column;
    }
    
    .column {
        width: 100%;
    }
    
    .form-group textarea {
        height: 180px;
    }
    
    .form__box {
        padding: 1.5rem;
    }
}
